home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / mod-1.dxr / 00027_Bucle strip.ls < prev    next >
Encoding:
Text File  |  1997-04-01  |  452 b   |  19 lines

  1. on exitFrame
  2.   global nIniVideo, nFinVideo, nCursor1, nMask1, bVideoNormal
  3.   if (the mouseV >= 345) and (the mouseH >= -3) and (the mouseV <= 480) and (the mouseH <= 137) then
  4.     set the movieRate of sprite 2 to 0
  5.   else
  6.     set the movieRate of sprite 2 to 1
  7.   end if
  8.   if the movieTime of sprite 2 > nFinVideo then
  9.     if bVideoNormal then
  10.       go("baile")
  11.     else
  12.       go("baileP")
  13.     end if
  14.   else
  15.     rollboton()
  16.   end if
  17.   go(the frame)
  18. end
  19.